home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
Dev
/
lame_src
/
fft.h
< prev
next >
Wrap
C/C++ Source or Header
|
2000-01-01
|
192b
|
11 lines
#ifndef FFT_H
#define FFT_H
#include "encoder.h"
void fft_long(FLOAT x_real[BLKSIZE], int, short **);
void fft_short(FLOAT x_real[3][BLKSIZE_s], int, short **);
void init_fft(void);
#endif